home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / graphics / amicad / arexx_english / date.amicad < prev    next >
Text File  |  1999-12-06  |  460b  |  22 lines

  1. /* Inscription de la date */
  2. /* $VER: 1.00e (© R.Florac, 22/5/99) */
  3.  
  4. options results     /* indispensable pour récupérer le résultat des macros */
  5.  
  6. signal on error     /* pour l'interception des erreurs */
  7. signal on syntax
  8.  
  9. 'WRITE(DATE(1),0,0)'
  10.  
  11. exit
  12.  
  13. /* Traitement des erreurs, interruption du programme */
  14. syntax:
  15. erreur=RC
  16. 'MESSAGE("Syntax error"+CHR(10)+"in line 'SIGL'"+CHR(10)+"'errortext(erreur)'")'
  17. exit
  18.  
  19. error:
  20. 'MESSAGE("Error in line 'SIGL'")'
  21. exit
  22.